home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / vyzkuste / triky / triky.exe / httrack-3.33.exe / {app} / src / htszlib.c < prev    next >
C/C++ Source or Header  |  2004-05-09  |  4KB  |  148 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: Unpacking subroutines using Jean-loup Gailly's Zlib    */
  34. /*       for http compressed data                               */
  35. /* Author: Xavier Roche                                         */
  36. /* ------------------------------------------------------------ */
  37.  
  38. /* Internal engine bytecode */
  39. #define HTS_INTERNAL_BYTECODE
  40.  
  41. /* specific definitions */
  42. #include "htsbase.h"
  43. #include "htscore.h"
  44. #include "htszlib.h"
  45.  
  46. #if HTS_USEZLIB
  47. /* zlib */
  48. /*
  49. #include <zlib.h>
  50. #include "htszlib.h"
  51. */
  52.  
  53. /*
  54.   Unpack file into a new file
  55.   Return value: size of the new file, or -1 if an error occured
  56. */
  57. int hts_zunpack(char* filename,char* newfile) {
  58.   if (gz_is_available && filename && newfile) {
  59.     if (filename[0] && newfile[0]) {
  60.       gzFile gz = gzopen (filename, "rb");
  61.       if (gz) {
  62.         FILE* fpout=fopen(fconv(newfile),"wb");
  63.         INTsys size=0;
  64.         if (fpout) {
  65.           int nr;
  66.           do {
  67.             char BIGSTK buff[1024];
  68.             nr=gzread (gz, buff, 1024);
  69.             if (nr>0) {
  70.               size+=nr;
  71.               if ((INTsys)fwrite(buff,1,nr,fpout) != nr)
  72.                 nr=size=-1;
  73.             }
  74.           } while(nr>0);
  75.           fclose(fpout);
  76.         } else
  77.           size=-1;
  78.         gzclose(gz);
  79.         return size;
  80.       }
  81.     }
  82.   }
  83.   return -1;
  84. }
  85.  
  86. int hts_extract_meta(char* path) {
  87.   unzFile zFile = unzOpen(fconcat(path,"hts-cache/new.zip"));
  88.   zipFile zFileOut = zipOpen(fconcat(path,"hts-cache/meta.zip"), 0);
  89.   if (zFile != NULL && zFileOut != NULL) {
  90.     if (unzGoToFirstFile(zFile) == Z_OK) {
  91.       zip_fileinfo fi;
  92.       unz_file_info ufi;
  93.       char BIGSTK filename[HTS_URLMAXSIZE * 4];
  94.       char BIGSTK comment[8192];
  95.       int entries = 0;
  96.       memset(comment, 0, sizeof(comment));       // for truncated reads
  97.       memset(&fi, 0, sizeof(fi));
  98.       memset(&ufi, 0, sizeof(ufi));
  99.       do  {
  100.         int readSizeHeader;
  101.         filename[0] = '\0';
  102.         comment[0] = '\0';
  103.         
  104.         if (unzOpenCurrentFile(zFile) == Z_OK) {
  105.           if (
  106.             (readSizeHeader = unzGetLocalExtrafield(zFile, comment, sizeof(comment) - 2)) > 0
  107.             &&
  108.             unzGetCurrentFileInfo(zFile, &ufi, filename, sizeof(filename) - 2, NULL, 0, NULL, 0) == Z_OK
  109.             ) 
  110.           {
  111.             comment[readSizeHeader] = '\0';
  112.             fi.dosDate = ufi.dosDate;
  113.             fi.internal_fa = ufi.internal_fa;
  114.             fi.external_fa = ufi.external_fa;
  115.             if (zipOpenNewFileInZip(zFileOut,
  116.               filename,
  117.               &fi,
  118.               NULL,
  119.               0,
  120.               NULL,
  121.               0,
  122.               NULL, /* comment */
  123.               Z_DEFLATED,
  124.               Z_DEFAULT_COMPRESSION) == Z_OK)
  125.             {
  126.               if (zipWriteInFileInZip(zFileOut, comment, (int) strlen(comment)) != Z_OK) {
  127.               }
  128.               if (zipCloseFileInZip(zFileOut) != Z_OK) {
  129.               }
  130.             }
  131.           }
  132.           unzCloseCurrentFile(zFile);
  133.         }
  134.       } while( unzGoToNextFile(zFile) == Z_OK );
  135.     }
  136.     zipClose(zFileOut, "Meta-data extracted by HTTrack/"HTTRACK_VERSION);
  137.     unzClose(zFile);
  138.     return 1;
  139.   }
  140.   return 0;
  141. }
  142.     
  143. #else
  144.     
  145. #error HTS_USEZLIB not defined
  146.     
  147. #endif
  148.